-------------------------------Nudeshy Documentation----------------------------------


Making mods for this is pretty easy, but honestly my mod is a little messy, so I'll just clear things up a little bit so you don't have to
look through all of the messy coding to find out how.


---------------------------------------Nudity------------------------------------------

To check for nudity, just use the callback function NudeShyCallBackNudityFunction.

if it returns a 0, they have armor covering their chest and their lower area.

if it returns a 1, then their lowerbody is exposed.

if it returns a 2, their upperbody is exposed.

if it returns a 3, they're completely uncovered (upperbody and lowerbody)

It checks for things set to count as nudity, broken breakundies armor (according to the user ini), or absense of armor or clothing.

-------------------------------------Modesty Defeat----------------------------------------

To check if a character will do a crouch down modestydefeat, check for an item called staystilldefeat (to check if it's in progress, look for an item called modestydefeat)

To check if a character has had this happen (and finish) between now and the player moving to a new cell, check for an item called notshyanymore. This item disappears when the player moves into a new cell.

To check if a character will do a running away modestydefeat, look for an item called runawaydefeat (to check if it's in progress, you can check for an item called runningtodoor)

To check if a character will do an mb or estrus modestydefeat, look for an item called mbdefeat.

To check if a character has had this happen (and finish) between now and the player moving to a new cell, check for an item called notshyanymore. This item disappears when the player moves into a new cell.

To make any of these happen, give them one of these items (only one, of one of them. don't give multiple items), then take their clothes away.

To check if a character has no modestydefeat, look for an item called nodefeat.

------------------------------------Suggestions-----------------------------------------


If anyone has any more suggestions for things I should add callbacks for, just say something and I'll see what can be done about it.

